home *** CD-ROM | disk | FTP | other *** search
- /* SnapShot.h
- */
-
-
- /* dialog boxes */
- #define ABOUTBOX 1
-
-
- /* menu items */
- #define IDM_ABOUT 5
- #define IDM_SHOWCLIP 6
- #define IDM_NOW 11
- #define IDM_5SEC 12
-
-
- /* strings */
- #define IDS_APPNAME 101 // SnapShot
- #define IDS_OUTOFMEMORY 102 // Out of memory
- #define IDS_INTERNALERROR 103 // Internal error %d
- #define IDS_APPNAMEVER 104 // SnapShot Version xxx
-
- #define IDD_TEXT 100 // text item
-
-
- /* macros */
- #define MB_ERROR (MB_ICONEXCLAMATION | MB_OK)
- #define Error(idsFmt) \
- ( ErrorResBox(hwnd, ghInst, MB_ERROR, IDS_APPNAME, \
- (idsFmt)), FALSE )
- #define Error1(idsFmt, arg1) \
- ( ErrorResBox(hwnd, ghInst, MB_ERROR, IDS_APPNAME, \
- (idsFmt), (arg1)), FALSE )
- #define Error2(idsFmt, arg1, arg2) \
- ( ErrorResBox(hwnd, ghInst, MB_ERROR, IDS_APPNAME, \
- (idsFmt), (arg1), (arg2)), FALSE )
-